home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Mac Game Programming Gurus / TricksOfTheMacGameProgrammingGurus.iso / More Source / C⁄C++ / Xconq 7.0d37 / source / config.host < prev    next >
Text File  |  1995-03-15  |  2KB  |  37 lines

  1. #!/bin/sh
  2.  
  3. case "$1" in
  4.   m68k-hp-hpux*)      host_makefile_frag=config/mh-hp300 ;;
  5.   m68k-apollo-sysv*)      host_makefile_frag=config/mh-apollo68 ;;
  6.   m68k-apollo-bsd*)       host_makefile_frag=config/mh-a68bsd ;;
  7.   m88k-motorola-sysv*)    host_makefile_frag=config/mh-delta88;;
  8.   m88k-dg-dgux*)      host_makefile_frag=config/mh-dgux ;;
  9.   mips*-dec-ultrix*)      host_makefile_frag=config/mh-decstation ;;
  10.   mips*-sgi-irix5*)       host_makefile_frag=config/mh-irix5 ;;
  11.   mips*-sgi-irix4*)       host_makefile_frag=config/mh-irix4 ;;
  12.   mips*-sgi-irix3*)       host_makefile_frag=config/mh-sysv ;;
  13.   mips*-*-sysv4*)      host_makefile_frag=config/mh-sysv4 ;;
  14.   mips*-*-sysv*)      host_makefile_frag=config/mh-riscos ;;
  15.   i[345]86-ncr-sysv4*)    host_makefile_frag=config/mh-ncr3000 ;;
  16.   i[345]86-*-sco*)        host_makefile_frag=config/mh-sco ;;
  17.   i[345]86-*-isc*)      host_makefile_frag=config/mh-sysv ;;
  18.   i[345]86-*-linux*)      host_makefile_frag=config/mh-linux ;;
  19.   i[345]86-*-solaris2*)   host_makefile_frag=config/mh-sysv4 ;;
  20.   i[345]86-*-aix*)      host_makefile_frag=config/mh-aix386 ;;
  21.   vax-*-ultrix2*)         host_makefile_frag=config/mh-vaxult2 ;;
  22.   *-ibm-aix*)             host_makefile_frag=config/mh-aix ;;
  23.   *-bull-bosx*)           host_makefile_frag=config/mh-aix ;;
  24.   *-*-solaris2*)          host_makefile_frag=config/mh-solaris ;;
  25.   m68k-sun-*)          host_makefile_frag=config/mh-sun3 ;;
  26.   *-sun-*)          host_makefile_frag=config/mh-sun ;;
  27.   *-hp-hpux*)             host_makefile_frag=config/mh-hpux ;;
  28.   *-*-hiux*)              host_makefile_frag=config/mh-hpux ;;
  29.   rs6000-*-lynxos*)      host_makefile_frag=config/mh-lynxosrs6k ;;
  30.   *-*-lynxos*)            host_makefile_frag=config/mh-lynxos ;;
  31.   *-*-sysv4*)             host_makefile_frag=config/mh-sysv4 ;;
  32.   *-*-sysv*)              host_makefile_frag=config/mh-sysv ;;
  33.   *)                      host_makefile_frag=config/mh-empty ;;
  34. esac
  35.  
  36. echo $2/$host_makefile_frag
  37.